home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-01-19 | 545 b | 23 lines |
- # Makefile - Used to build the load server on an Encore Multimax (4.3 BSD).
-
- # (Making this program on an Encore Multimax requires the gcc compiler.)
-
- # Revision History:
- # 1. Original coding. 17 JAN 1991 (REX)
-
- # Rex Pruess <rpruess@umaxc.weeg.uiowa.edu>
- # ----------------------------------------------------------------------------
-
- OBJS= LoadServer.o
- CC = gcc
- CFLAGS= -O
- LIBS=
-
- LoadServer: $(OBJS)
- $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBS)
-
- install:
- install -s -m 700 LoadServer /usr/adm/local/bin/LoadServer
- clean:
- -rm -f *.o LoadServer
-